type github.com/jackc/pgx/v5.dbTx
13 uses
github.com/jackc/pgx/v5 (current package)
tx.go#L109: return &dbTx{
tx.go#L157: type dbTx struct {
tx.go#L165: func (tx *dbTx) Begin(ctx context.Context) (Tx, error) {
tx.go#L180: func (tx *dbTx) Commit(ctx context.Context) error {
tx.go#L209: func (tx *dbTx) Rollback(ctx context.Context) error {
tx.go#L226: func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error) {
tx.go#L235: func (tx *dbTx) Prepare(ctx context.Context, name, sql string) (*pgconn.StatementDescription, error) {
tx.go#L244: func (tx *dbTx) Query(ctx context.Context, sql string, args ...any) (Rows, error) {
tx.go#L255: func (tx *dbTx) QueryRow(ctx context.Context, sql string, args ...any) Row {
tx.go#L261: func (tx *dbTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
tx.go#L270: func (tx *dbTx) SendBatch(ctx context.Context, b *Batch) BatchResults {
tx.go#L279: func (tx *dbTx) LargeObjects() LargeObjects {
tx.go#L283: func (tx *dbTx) Conn() *Conn {